home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 07 DecisionMaking Architectures / 01 Isla, Blumberg / EventNotifier.java < prev    next >
Encoding:
Java Source  |  2001-09-25  |  372 b   |  12 lines

  1. package bb;
  2.  
  3. /*
  4. A so-far fairly empty event interface. Right now all it does is
  5. distribute information about agent deaths to whoever is interested
  6. (i.e. whatever class IMPLEMENTS the EventNotifier interface and
  7. registers with the world to receive the event info).
  8. */
  9.  
  10. public interface EventNotifier {
  11.     public void deathNotification(Agent a, Vec2 location);
  12. }